/*
* Created on 12.12.2003
*/
package observations;
/**
* <code>OutOfRangeException</code> Is thrown when a value is out of preset
* valid range.
*
* @author Sascha Hemminger
* @version 2004-09-10
*/
public class OutOfRangeException extends Exception {
/**
* Sole constructor establishes the message.
*
* @see java.lang.Exception#Exception(java.lang.String)
*/
OutOfRangeException() {
super("Value not in boundaries");
}
}
|